#!/bin/bash

echo "---start 2c-audio plug-in setup core post install script (demo)---"
echo ""

demo_file_path="/Library/Application Support/2C-Audio/Aether-Demo/Res/demo.prop"
aeplg_prop_file_path="/Library/Application Support/2C-Audio/Aether-Demo/Props/aether.prop"
audplg_file_path="/Library/Application Support/2C-Audio/Aether-Demo/Props/audplg.prop"

# change permissions to read and write to all

echo $demo_file_path
echo ""

echo $aeplg_prop_file_path
echo ""

echo $audplg_file_path
echo ""

chmod a+rw "$demo_file_path"

chmod a+rw "$aeplg_prop_file_path"

chmod a+rw "$audplg_file_path"

echo ""
echo "---end 2c-audio plug-in setup main post-install script (demo)---"

exit 0